home *** CD-ROM | disk | FTP | other *** search
- global gFirstTime, gCurrentFrame, gReverse, gForward
-
- on exitFrame
- if gFirstTime then
- startTimer()
- set gFirstTime to 0
- end if
- repeat while the timer < (60 * 5)
- set the visible of sprite 7 to 0
- set the visible of sprite 8 to 0
- set the visible of sprite 9 to 0
- if rollOver(3) then
- set the visible of sprite 7 to 1
- if the mouseDown then
- legalButton(3)
- set gCurrentFrame to gCurrentFrame - 1
- advanceToCurrentFrame()
- exit
- end if
- else
- if rollOver(4) then
- set the visible of sprite 8 to 1
- if the mouseDown then
- updateStage()
- legalButton(4)
- delayFor(15)
- go(the frame + 1)
- exit
- end if
- else
- if rollOver(5) then
- set the visible of sprite 9 to 1
- if the mouseDown then
- legalButton(5)
- set gCurrentFrame to gCurrentFrame + 1
- advanceToCurrentFrame()
- exit
- end if
- end if
- end if
- end if
- updateStage()
- end repeat
- set gCurrentFrame to gCurrentFrame + 1
- advanceToCurrentFrame()
- end
-